home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyo (Python 2.4)
-
- '''Whimpy test script for the cd module
- Roger E. Masse
- '''
- import cd
- from test.test_support import verbose
- cdattrs = [
- 'BLOCKSIZE',
- 'CDROM',
- 'DATASIZE',
- 'ERROR',
- 'NODISC',
- 'PAUSED',
- 'PLAYING',
- 'READY',
- 'STILL',
- '__doc__',
- '__name__',
- 'atime',
- 'audio',
- 'catalog',
- 'control',
- 'createparser',
- 'error',
- 'ident',
- 'index',
- 'msftoframe',
- 'open',
- 'pnum',
- 'ptime']
-
- def main():
- if verbose:
- print 'Touching cd module attributes...'
-
- for attr in cdattrs:
- if verbose:
- print 'touching: ', attr
-
- getattr(cd, attr)
-
-
- main()
-